home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
JZLOGO.C
< prev
next >
Wrap
Text File
|
1989-04-09
|
424b
|
21 lines
#include <jzscreen.h>
jzlogo()
{
int wscan;
cls(LIGHTGRAY);
jzbigstr("(c)JazSoft",2,1,'░',RED);
jzbigstr("(c)JazSoft",1,0,'█',CYAN);
jzbigstr("By Jaz",13,18,'░',GREEN);
jzbigstr("By Jaz",12,17,'▒',MAGENTA);
jzbigstr("By Jaz",11,16,'▓',YELLOW);
jzscrprn("Press <Enter> to continue...",24,0,CYAN | BLINK);
jzloccur(24,0);
do ; while (jzinkey(&wscan)!= 13);
}